home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / vbdatabs / bnodeb.h < prev    next >
C/C++ Source or Header  |  1999-03-14  |  3KB  |  72 lines

  1. // ------------------------------- //
  2. // -------- Start of File -------- //
  3. // ------------------------------- //
  4. // ----------------------------------------------------------- //
  5. // C++ Header File Name: bnodeb.h
  6. // Compiler Used: MSVC40, DJGPP 2.7.2.1, GCC 2.7.2.1, HP CPP 10.24
  7. // Produced By: Doug Gaer   
  8. // File Creation Date: 01/23/1997 
  9. // Date Last Modified: 03/15/1999
  10. // Copyright (c) 1997 Douglas M. Gaer
  11. // ----------------------------------------------------------- // 
  12. // ---------- Include File Description and Details  ---------- // 
  13. // ----------------------------------------------------------- // 
  14. /*
  15. The VBD C++ classes are copyright (c) 1997, by Douglas M. Gaer.
  16. All those who put this code or its derivatives in a commercial
  17. product MUST mention this copyright in their documentation for
  18. users of the products in which this code or its derivative
  19. classes are used. Otherwise, you have the freedom to redistribute
  20. verbatim copies of this source code, adapt it to your specific
  21. needs, or improve the code and release your improvements to the
  22. public provided that the modified files carry prominent notices
  23. stating that you changed the files and the date of any change.
  24.  
  25. THIS SOFTWARE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND.
  26. THE ENTIRE RISK OF THE QUALITY AND PERFORMANCE OF THIS SOFTWARE
  27. IS WITH YOU. SHOULD ANY ELEMENT OF THIS SOFTWARE PROVE DEFECTIVE,
  28. YOU WILL ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR, OR
  29. CORRECTION.
  30.  
  31. Base class for binary tree nodes. The BNodeBase class is used to
  32. separate the nodes from the data stored in the tree. Functions
  33. that take BNodeBase pointers as parameters can be shared across
  34. all Binary Trees regardless of the data type stored in the Tree
  35. Nodes.
  36. */
  37. // ----------------------------------------------------------- //   
  38. #ifndef __BNODEB_HPP
  39. #define __BNODEB_HPP
  40.  
  41. // An abstract binary tree node that holds no data.
  42. class BNodeBase
  43. {
  44. public:
  45.   BNodeBase *Left;
  46.   BNodeBase *Right;
  47. };
  48.  
  49. // VisitFunc is a pointer to void(BNodeBase *Node) which
  50. // points to a function used for the visit action
  51. typedef void (*VisitFunc)(BNodeBase *Node); 
  52.  
  53. // Standalone functions that operate on BNodeBase pointers.
  54. // This implementation provides maximum code sharing.
  55. BNodeBase *RotateRight(BNodeBase *Tree);
  56. BNodeBase *RotateLeft(BNodeBase *Tree);
  57. int NumNodes(BNodeBase *Tree);
  58. int Height(BNodeBase *Tree);
  59. void PreOrder(BNodeBase *Tree, VisitFunc Visit);
  60. void InOrder(BNodeBase *Tree, VisitFunc Visit);
  61. void PostOrder(BNodeBase *Tree, VisitFunc Visit);
  62. void LvlOrder(BNodeBase *Tree, VisitFunc Visit);
  63. void PreOrderFlat(BNodeBase *Tree, VisitFunc Visit);
  64. void InOrderFlat(BNodeBase *Tree, VisitFunc Visit);
  65. void PostOrderFlat(BNodeBase *Tree, VisitFunc Visit);
  66.  
  67. #endif // __BNODEB_HPP
  68. // ----------------------------------------------------------- // 
  69. // ------------------------------- //
  70. // --------- End of File --------- //
  71. // ------------------------------- //
  72.